home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-07-24 | 496 b | 12 lines | [TEXT/MPS ] |
- StdWDEF MAIN EXPORT ; this will be the entry point
- IMPORT MyWindowDef ; name of Pascal FUNCTION that is the WDEF
- ; we IMPORT externally referenced routines
- ; from Pascal (in this case, just this one)
- BRA.S @0 ; branch around the header to the actual code
- DC.W 0 ; flags word
- DC.B 'WDEF' ; type
- DC.W 3 ; ID number
- DC.W 0 ; version
- @0 JMP MyWindowDef ; this calls the Pascal WDEF
- END
-